home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 PPC / Demo / tkinter / guido / listtree.py < prev    next >
Text File  |  1996-05-19  |  933b  |  37 lines

  1. # List a remote app's widget tree (names and classes only)
  2.  
  3. import sys
  4. import string
  5.  
  6. from Tkinter import *
  7.  
  8. def listtree(master, app):
  9.     list = Listbox(master, {'name': 'list',
  10.                 Pack: {'expand': 1, 'fill': 'both'}})
  11.     listnodes(list, app, '.', 0)
  12.     return list
  13.  
  14. def listnodes(list, app, widget, level):
  15.     klass = list.send(app, 'winfo', 'class', widget)
  16. ##    i = string.rindex(widget, '.')
  17. ##    list.insert('end', '%s%s (%s)' % ((level-1)*'.   ', widget[i:], klass))
  18.     list.insert('end', '%s (%s)' % (widget, klass))
  19.     children = list.tk.splitlist(
  20.         list.send(app, 'winfo', 'children', widget))
  21.     for c in children:
  22.         listnodes(list, app, c, level+1)
  23.  
  24. def main():
  25.     if not sys.argv[1:]:
  26.         sys.stderr.write('Usage: listtree appname\n')
  27.         sys.exit(2)
  28.     app = sys.argv[1]
  29.     tk = Tk()
  30.     tk.minsize(1, 1)
  31.     f = Frame(tk, {'name': 'f', Pack: {'expand': 1, 'fill': 'both'}})
  32.     list = listtree(f, app)
  33.     tk.mainloop()
  34.  
  35. if __name__ == '__main__':
  36.     main()
  37.